home *** CD-ROM | disk | FTP | other *** search
/ Space Shuttle - The First 100 Flights / Space Shuttle - The First 100 Flights.iso / trivia.dir / 00012_Script_12 < prev    next >
Text File  |  2000-11-09  |  853b  |  42 lines

  1. on exitFrame me
  2.   repeat with n = 24 to 27
  3.     if rollover(n) then
  4.       set the blend of sprite n to 100
  5.       set the blend of sprite n+4 to 100
  6.     else
  7.       set the blend of sprite n to 00
  8.       set the blend of sprite n+4 to 00
  9.     end if
  10.   end repeat
  11.   
  12.   global nogo, TheSeconds
  13.   
  14.   if the timer > (60) then 
  15.     TheSeconds = TheSeconds - 1
  16.     startTimer
  17.     
  18.     set the text of member "clock" to "" & TheSeconds
  19.   end if
  20.   
  21.   if TheSeconds = 0 then
  22.     UpdateStage
  23.     nogo = "true"
  24.     go to frame "checkanswer"
  25.   end if
  26.   
  27.   if rollover(20) then
  28.     set the membernum of sprite 20 to 29
  29.   else
  30.     set the membernum of sprite 20 to 28
  31.   end if
  32.   
  33.   if rollover(21) then
  34.     set the membernum of sprite 21 to 31
  35.   else
  36.     set the membernum of sprite 21 to 30
  37.   end if
  38.   
  39.   go to the frame
  40.   
  41.   
  42. end